blob: 2b070d0a24d2a778ef62d4011a26859eca1991f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
.dramaInfoContainer {
display: flex;
flex-direction: column;
}
.dramaInfo {
display: flex;
flex-direction: column;
width: 95%;
margin: 0px auto;
}
.titleContainer {
display: flex;
justify-content: space-between;
align-items: center;
}
.titleContainer p {
color: var(--neon-green);
width: 60%;
font-family: "Kanit";
font-size: 24px;
}
.titleContainer img {
border-radius: 10px;
}
.animeDescription {
color: #ffffff81;
font-family: "Lato";
font-size: 16px;
max-height: 120px;
margin: 20px auto;
text-align: center;
overflow-y: auto;
}
.buttonContainer {
margin: 5px auto;
text-align: center;
max-height: 200px;
overflow-y: auto;
}
.dramaButton {
padding: 8px;
font-family: "Atkinson Hyperlegible";
font-size: 18px;
margin: 5px;
width: 50px;
border-radius: 5px;
border: none;
background-color: var(--light-green);
cursor: pointer;
}
.dramaButton:hover {
background-color: var(--soft-purple);
}
.infoPageContainer {
display: flex;
height: 100dvh;
justify-content: center;
align-items: center;
}
.infoPageContainer p {
color: white;
}
@media (prefers-color-scheme: light) {
.animeDescription {
color: black;
}
.infoPageContainer p {
color: black;
}
}
|